home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #2 / Ham Radio 2000 - Volume 2.iso / HAMV2 / TCP_IP / TNOS230S / UNIXTM.H < prev    next >
C/C++ Source or Header  |  1997-07-30  |  579b  |  33 lines

  1. /*
  2.  * We simulate the DOS date/time stuff instead of using the Unix ones because
  3.  * the Unix ones require a lot of changed code.
  4.  */
  5.  
  6. #ifndef _UNIXTM_H
  7.  
  8. struct date
  9. {
  10.     int da_year;
  11.     int da_day;
  12.     int da_mon;
  13. };
  14.  
  15. struct time
  16. {
  17.     int ti_min;
  18.     int ti_hour;
  19.     int ti_sec;
  20.     int ti_hund;
  21. };
  22.  
  23. extern void tnos_getdate (struct date *);
  24. extern void gettime (struct time *);
  25. extern long secclock (void);
  26. extern long msclock (void);
  27. #ifndef _HARDWARE_H
  28. extern long dostounix (struct date *, struct time *);
  29. #endif
  30.  
  31. #define _UNIXTM_H
  32. #endif
  33.